Código fuente de 'Formatea fecha.asp'

<html>
<head>
<title>Tipos de fechas - Códigos asp, programacion asp, descargas asp, rutinas asp</title>

<body style="font-family: Arial; font-size: 9pt">

<p align="center"><b><font size="3">Formatea fecha</font></b></p><br>
<br>

<b>La fecha de hoy es </b> <%=Date()%> <b>o</b> <%=FormatDateTime(Date(), vbLongDate)%> <BR>
<b>Este año es el</b> <%=Year(Date())%>.<BR>
<b>Es el <%=Month(Date)%> mes del año, su nombre es</b> <%=MonthName(Month(Date()))%> (<%=MonthName(Month(Date()),true)%>).<BR>
<b>Es el <%=Day(Date)%> día del mes, día <%=WeekDay(Date)%> de la semana,</b> <b>y es</b> <%=WeekdayName(Weekday(Date()))%>.<BR>

</p>



</body>
</html>